home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\INSTALL < prev    next >
Text File  |  1994-10-15  |  2KB  |  49 lines

  1. @(#)$Id$
  2.  
  3. to compile ircii
  4.  
  5.   o  there are 2 main ways of configuring ircii for your system.  you
  6.      can either run the `easyinst' script, or, if you know how to use
  7.      gnu configure scripts, you can use that directly, and then edit
  8.      include/config.h yourself.
  9.  
  10.   o  using easyinst:
  11.       - in the same directory that this file is in, type `./easyinst'.
  12.     if you are using an old version of system v, you might need
  13.     `sh easyinst'.
  14.       - this script asks you a few questions and then calls configure
  15.         for you.
  16.  
  17.   o  using configure directly:
  18.       - in the same directory that this file is in, type `./configure'.
  19.     if you are using an old version of system v, you might need
  20.     `sh configure'.
  21.  
  22.       - this script tries to guess various things about your system
  23.         that are important to it compiling.  it creates various files
  24.         in this process.  configure takes a couple of minutes to run.
  25.  
  26.      WARNING: gnu sed vesrion 2.05 (and maybe 2.04 -- i don't know)
  27.      will not function properly with this configure script.  gnu
  28.      sed version 2.03 does.  please do not send me a bug report if
  29.      you are using gnu sed version 2.05 (such as linux systems)
  30.  
  31.       - when this has finished, you might want to check the Makefile
  32.         for the places ircii will be installed.  the defaults are
  33.         /usr/local/lib, /usr/local/bin and /usr/local/man.  you can
  34.         either do `make prefix=/local' or set it with configure, by
  35.         calling configure with the `--prefix=/local' switch.
  36.  
  37.   o  compiling ircii - type `make' in the main ircii directory.  this
  38.      will compile the `irc', `ircflush', `ircserv', and `wserv'
  39.      programs that reside in the source sub directory.
  40.  
  41.   o  once the programs are compiled, you can install them with
  42.      `make install'.  this will install all the binaries, scripts,
  43.      translation tables, and the ircii man page.
  44.  
  45.   o  you can now delete the object files and binaries from the source
  46.      directory with `make clean'.  `make distclean' will also delete
  47.      any file that `configure' created.  this is useful for then
  48.      using the same sources to compile on a different architecture.
  49.